home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00023_NavStructMgr.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.3 KB  |  179 lines

  1. --
  2. -- NavStructMgr
  3. --
  4. -- handles the basic navigation for an application.
  5. -- major calls are:
  6. --   next
  7. --   prev
  8. --   goLevel [levelNumber]
  9.  
  10.  
  11. -- constants:
  12.  
  13. property ancestor
  14.  
  15. property appPath
  16. property mainMovie
  17.  
  18. property navStruct
  19.  
  20. property level
  21. property activity
  22.  
  23. property returnFrame
  24.  
  25.  
  26. on new me
  27.   set ancestor = new (script "Banner")
  28.   
  29.   set level = 0
  30.   set activity = 0
  31.   set returnFrame = 1
  32.   
  33.   set appPath = the pathname   -- possibly something else...
  34.   set mainMovie = the movieName
  35.   return me
  36. end
  37.  
  38.  
  39. on destruct me
  40.   if objectP (ancestor) then destruct (ancestor)
  41.   set ancestor = 0
  42. end
  43.  
  44.  
  45. on getLevel me
  46.   if not stringP (level) then return 0
  47.   else return integer (char 7 to 8 of level)
  48. end
  49.  
  50.  
  51. on setStruct me, lst
  52.   if ilk (lst, #proplist) then 
  53.     -- makeField (me, "NavStruct", lst)
  54.     set navStruct = lst
  55.   end if
  56. end
  57.  
  58.  
  59. on goMain me
  60.   if the movieName = mainMovie then return
  61.   cleanUp (me)
  62.   updateStage
  63.   go to frame returnFrame of movie appPath & mainMovie
  64.   unloadCast (me)
  65. end
  66.  
  67.  
  68. -- go to a lesson in a particular application (as laid out in the file structure):
  69. -- pass an integer to represent the level number
  70. -- and r (the frame to return to in the main movie)
  71.  
  72. on goLevel me, num, r
  73.   -- check for legal return frames:
  74.   if stringP (r) then set r = label(r)
  75.   if integerP (r) and r > 0 then set returnFrame = r
  76.   else set r = 1
  77.   cursor 4
  78.   if getPropAt (navStruct, num) > 0 then 
  79.     set level = getPropAt (navStruct, num)  -- level number
  80.     set lst = getAProp (navStruct, level)
  81.     set activity = getAt (lst, 1)
  82.     goActivity (me)
  83.   else
  84.     go Frame r
  85.   end if
  86.   --JCODE setPrintString (me, the text of member ("printString,"&level) of castLib "UI.cst")
  87.   setPrintBackground (me, ("A-CERT-"&level&".p"))
  88.   setPrintForgroundMem (me, "certificateName")
  89.   
  90.   cursor -1
  91. end
  92.  
  93.  
  94. -- go to the currently chosen activity,
  95. -- level and activity must be marked before this call is made.
  96.  
  97. on goActivity me
  98.   -- do nothing if:
  99.   if (not stringP (level)) or (not stringP (activity)) then return
  100.   cleanUp (me)
  101.   go to movie (appPath & "modules" & pathChar (me) & level & pathChar (me) & activity)
  102.   unloadCast (me)
  103.   cursor 200
  104. end
  105.  
  106.  
  107. on isLastActivity me
  108.   set lst = getAProp (navStruct, level)
  109.   set curr = getPos (lst, activity)
  110.   
  111.   set curr = curr + 1
  112.   if curr <= count (lst) then return 0
  113.   else
  114.     return 1
  115.   end if
  116. end
  117.  
  118.  
  119. -- is this activity self contained?
  120.  
  121. on isSelfContained me
  122.   if not stringP (activity) then return 1
  123.   else return 0
  124. end
  125.  
  126.  
  127. -- go to the next activity in the current level directory.
  128. -- if there is no next activity then return to the main movie.
  129.  
  130. on next me
  131.   if not stringP (activity) then
  132.     alert "This activity is self contained."
  133.     exit
  134.   end if
  135.   
  136.   set lst = getAProp (navStruct, level)
  137.   set curr = getPos (lst, activity)
  138.   
  139.   set curr = curr + 1
  140.   if curr <= count (lst) then 
  141.     set activity = getAt (lst, curr)
  142.     goActivity (me)
  143.   else
  144.     goMain (me)
  145.   end if
  146. end
  147.  
  148.  
  149. -- go to the previous activity in the current level directory.
  150. -- if there is no previous activity then return to the main movie.
  151.  
  152. on prev me
  153.   set lst = getAProp (navStruct, level)
  154.   set curr = getPos (lst, activity)
  155.   
  156.   set curr = curr - 1
  157.   if curr > 0 then 
  158.     set activity = getAt (lst, curr)
  159.     goActivity (me)
  160.   else
  161.     goMain (me)
  162.   end if
  163. end
  164.  
  165.  
  166. on cleanUp me
  167.   spritesOff (me)
  168.   killActorList (me)
  169.   unloadCast (me)
  170. end
  171.  
  172.  
  173.  
  174. on updateCurrentModule me
  175.   set mn = the movieName
  176. end
  177.  
  178.  
  179.